Core Concept

Hamid

Hamid

fullstack developer

this is how โ†“โ†“

your css

:root {
--primary-color: #66cc99;
}
.primary {
color: var(--primary);
}

your js

function changeTheme() {
const newColor = '#112233';
document.body.style.setProperty('--primary-color', newColor);
}

thats it all...